home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
listings
/
v_07_02
/
v7n2035a.txt
< prev
next >
Wrap
Text File
|
1988-11-28
|
340b
|
19 lines
/* Define machine inputs */
#define I_ESC 0
#define I_Q 1
#define I_S 2
/* Define machine actions */
#define A_DO_ESC 0
#define A_ESC_Q 1
#define A_ESC_S 2
#define A_PASSTHRU 3 /* default */
esc_matrix[2][3] = {
/* State 'S_START' */
{ I_ESC, A_PASSTHRU, A_PASSTHRU },
/* State 'S_ESC' */
{ A_PASSTHRU, I_Q, I_S },
};